home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.3 Development Libraries / SGI IRIX 6.3 Development Libraries.iso / dist6.3 / ViewKit_dev.idb / usr / share / src / ViewKit / Makefile.z / Makefile
Encoding:
Makefile  |  1996-09-20  |  1.1 KB  |  55 lines

  1. #!smake
  2. include $(ROOT)/usr/include/make/commondefs
  3.  
  4. # 64-bit build issues:
  5. #    * The default build is set by commondefs to be mips2, 32 bits,
  6. #      for all machines.
  7. #    * This can be overridden by setting OBJECT_STYLE to either N32 or 64:
  8. #        * setenv OBJECT_STYLE N32
  9. #        * setenv OBJECT_STYLE 64
  10. #        * env OBJECT_STYLE=N32 make ...
  11. #        * env OBJECT_STYLE=64  make ...
  12. #    * libtt (tooltalk) is only shipped as an o32 library.  Consequently,
  13. #      some ViewKit demos will not build in any other ABI.  The following
  14. #      conditionals allow for that.
  15. #
  16.  
  17. #if $(OBJECT_STYLE:M64*) == ""
  18. #   libsun is only shipped as a 32-bit library, and is needed by Communication
  19.     COMMUNICATION_DIR = Communication
  20. #endif
  21.  
  22. SUBDIRS=            \
  23.     Applications        \
  24.     Basic            \
  25.     $(COMMUNICATION_DIR)    \
  26.     Components        \
  27.     ComponentDemos        \
  28.     CutPasteDragDrop    \
  29.     Dialogs            \
  30.     Icons            \
  31.     Menus            \
  32.     Preferences        \
  33.     ProgrammersGuide    \
  34.     Process            \
  35.     QuickHelp         \
  36.     Utilities         \
  37.     $(NULL)
  38.  
  39. C++FILES=    \
  40.     $(NULL)
  41.  
  42. HEADERS=    \
  43.     $(NULL)
  44.  
  45. TARGETS=\
  46.     $(NULL)
  47.  
  48. COMMONPREF = lcl_
  49. default all targets $(COMMONTARGS):
  50.     $(SUBDIRS_MAKERULE)
  51.  
  52. headers:
  53.  
  54. include $(COMMONRULES)
  55.